diff options
| author | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2024-12-23 14:13:29 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> | 2024-12-23 14:13:29 +0100 |
| commit | 3013f352570439832075bab19c9ae91ec6ab98ac (patch) | |
| tree | 37052258a5e4d5859ad9024f99cceb9a38047707 /src/pages/blog/[id].astro | |
| parent | 16b7b327d43a3d3a2ab0b6317072136d7df69a3d (diff) | |
Update to astro 5
Diffstat (limited to 'src/pages/blog/[id].astro')
| -rw-r--r-- | src/pages/blog/[id].astro | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/pages/blog/[id].astro b/src/pages/blog/[id].astro new file mode 100644 index 0000000..6488a04 --- /dev/null +++ b/src/pages/blog/[id].astro @@ -0,0 +1,58 @@ +--- +import type { GetStaticPaths } from "astro"; +import Layout from "../../layouts/Layout.astro"; +import { getCollection, render } from "astro:content"; + +export const getStaticPaths = (async () => { + const entries = await getCollection("blog"); + return entries.map((entry) => ({ + params: { id: entry.id }, + props: { entry }, + })); +}) as GetStaticPaths; + +const { entry } = Astro.props; +const { Content } = await render(entry); +const formattedDate = new Date(entry.data.publishedAt).toLocaleDateString( + "es-ES", + { + year: "numeric", + month: "long", + day: "numeric", + weekday: "long", + }, +); + +const schema = { + "@context": "https://schema.org", + "@type": "BlogPosting", + headline: entry.data.title, + datePublished: entry.data.publishedAt.toISOString(), + author: { + "@type": "Person", + name: "Ariel Costas Guerrero", + }, + publisher: { + "@type": "Person", + name: "Ariel Costas Guerrero", + logo: { + "@type": "ImageObject", + url: "https://www.costas.dev/favicon.png", + }, + }, +}; +--- + +<Layout title={entry.data.title} description={entry.data.metaDescription}> + <script type="application/ld+json" slot="head-jsonld" set:html={JSON.stringify(schema)}></script> + + <h1>{entry.data.title}</h1> + <small> + Publicado el + <time datetime={entry.data.publishedAt.toISOString()}> + {formattedDate} + </time> + </small> + + <Content /> +</Layout> |
